summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/viewholders/GameViewHolder.kt
blob: e7319107e2ed2db980ed7dfd9fb62dde8f628d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.yuzu.yuzu_emu.viewholders

import android.view.View
import android.widget.ImageView
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import org.yuzu.yuzu_emu.R

/**
 * A simple class that stores references to views so that the GameAdapter doesn't need to
 * keep calling findViewById(), which is expensive.
 */
class GameViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
    var imageIcon: ImageView
    var textGameTitle: TextView
    var textGameCaption: TextView
    var gameId: String? = null

    // TODO Not need any of this stuff. Currently only the properties dialog needs it.
    var path: String? = null
    var title: String? = null
    var description: String? = null
    var regions: String? = null
    var company: String? = null

    init {
        itemView.tag = this
        imageIcon = itemView.findViewById(R.id.image_game_screen)
        textGameTitle = itemView.findViewById(R.id.text_game_title)
        textGameCaption = itemView.findViewById(R.id.text_game_caption)
    }
}